Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: notes python installation

...

  1. Click the New drop-down menu at the top right corner and then choose Terminal.
  2. In the new browser tab with terminal access, type the Type the following command in Terminal and press enter:

    Code Block
    pip3python3 -m pip install --upgradeuser PACKAGE_NAME


  3. Check if the package has been successfully installed.
  4. Close the tab.

Notes about Python package installation

1. Please see the pip documentation for more information about using pip.


2. Installing Python packages this way, you can find your Python packages in your user library:

Code Block
/home/HawkID/.local/lib/pythonx.x/site-packages

where HawkID is your HawkID, and pythonx.x indicates the Python version, for example, Python 3.7.


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 your user library to PATH:

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

And then run the following in Terminal. Note that .bashrc needs to be sourced every time you start a new Terminal session.

Code Block
source .bashrc

Installing R Packages

Using RStudio

...