Skip to content

Latest commit

 

History

22 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pacman Projects

This an updated version of the PacMan projects from UC Berkeley CS188 Intro to AI -- Course Materials which run in Python3.X. The covered projects are:

Setting up Python3.8 in Ubuntu

A requirement for this project is to install Python3.8 in your Operating System. The next script is an example for installing that python version in Ubuntu.

sudo apt-get update

sudo apt-get install -y build-essential libssl-dev zlib1g-dev libbz2-dev \
                        libreadline-dev libsqlite3-dev wget curl llvm \
                        libncurses5-dev libncursesw5-dev xz-utils tk-dev \
                        libffi-dev liblzma-dev python3-openssl git
mkdir ~/python38
cd ~/python38
wget https://www.python.org/ftp/python/3.8.6/Python-3.8.6.tgz
tar -xf Python-3.8.6.tgz
cd Python-3.8.6
./configure --enable-optimizations
make -j$(nproc)
sudo make install
python3.8 --version

About

UC Berkeley CS188 Intro to AI -- Course Materials, a refactored version that runs in Python3.X

Resources

Stars

2 stars

Watchers

5 watching

Forks

Releases

Packages

Contributors

Languages