Installation
From Terminal
The pharmbio
package is available on PyPI and can be easily installed using pip:
To update the package to the latest version, use:
Alternatively, you can install the package directly from our GitHub repository:
From Jupyter Notebook
If you want to install or update the package within a Jupyter Notebook, you have two options:
1- Using !pip
Run a cell with the following command:
2- Using %pip
Alternatively, you can use the %pip magic command for a more environment-aware installation:
When using Jupyter notebook to install a package
- ! is for shell commands that are unaware of your Python environment.
- % is for IPython magic commands that are often Python-aware.
When you use %pip
in a Jupyter Notebook, the package will be installed in the same Python environment where the Jupyter Notebook kernel is running.
Using %pip
ensures that you don't get confused about which Python environment you're installing the package into, especially useful when you have multiple Python environments on your system.