Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Below are some basic ways to install packages in Python, R, and Julia. We also strongly recommend using tools like conda and Python virtual environments to manage your projects.

Installing Python Packages

...

3. If you are using a user-installed Python package in Terminal, you will need to add your user library to PATH. Type the following in Terminal to add In Terminal:

First, crease a .bashrc if you haven't done so before:

Code Block
touch ~/.bashrc

Add your user library to PATH:

Code Block
echo 'export PATH=$PATH:~/.local/bin' >> ~/.bashrc

...