Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 884 Bytes

INSTALL.rst

File metadata and controls

26 lines (17 loc) · 884 Bytes

The easiest way to install codeschool is using pip:

$ python -m pip install codeschool

This command will fetch the archive and its dependencies from the internet and install them for you. You may need to pick either python2` or python3 in order to adjust for the correct python version.

If you've downloaded the tarball, unpack it, and execute:

$ python setup.py install

In either case, it is possible to perform local user installs by appending the --user option.

Troubleshoot

Windows users may find that these command will only works if typed from Python's installation directory.

Some Linux distributions (e.g. Ubuntu) install Python without installing pip. Please install it before. If you don't have root privileges, download the get-pip.py script at https://bootstrap.pypa.io/get-pip.py and execute it as python get-pip.py --user.