Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.3 KB

pip.md

File metadata and controls

43 lines (33 loc) · 1.3 KB

Python packages

Now that we have a pristine lewagon virtual environment, it's time to install some packages in it.

First, let's upgrade pip, the tool to install Python Packages from pypi.org. In the latest terminal where the virtualenv lewagon is activated, run:

pip install --upgrade pip

Then let's install some packages for the first weeks of the program:

$MAC_START If your computer uses Apple Silicon, expand the paragraph below and go through it. Otherwise ignore it.

👉  Setup for Apple Silicon 👈
pip install -r https://raw.githubusercontent.com/lewagon/data-setup/master/specs/releases/apple_silicon.txt

If your computer uses Apple Intel, expand the paragraph below and go through it. Otherwise ignore it.

👉  Setup for Apple Intel 👈
pip install -r https://raw.githubusercontent.com/lewagon/data-setup/master/specs/releases/apple_intel.txt
$MAC_END $WINDOWS_START ``` bash pip install -r https://raw.githubusercontent.com/lewagon/data-setup/master/specs/releases/linux.txt ``` $WINDOWS_END $LINUX_START ``` bash pip install -r https://raw.githubusercontent.com/lewagon/data-setup/master/specs/releases/linux.txt ``` $LINUX_END