Skip to content

Commit

Permalink
Move pip install into ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
HoangGiang93 committed Jun 2, 2024
1 parent bff4e41 commit 859e951
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,20 +102,20 @@ sudo apt-get install -y pybind11-dev
# Install jupyter-notebook
sudo apt-get install -y jupyter-notebook

# Upgrade pip
pip install --break-system-packages --user --upgrade pip build
if [ $UBUNTU_VERSION = "20.04" ]; then
# Upgrade pip
pip install --upgrade pip build

# Install additional packages for USD and multiverse_knowledge
pip install --break-system-packages --user pyside6 pyopengl wheel cython owlready2 markupsafe==2.0.1 jinja2 pybind11 inflection
# Install additional packages for USD and multiverse_knowledge
pip install pyside6 pyopengl wheel cython owlready2 markupsafe==2.0.1 jinja2 pybind11 inflection

# Install additional packages for multiverse_parser
pip install --break-system-packages --user urdf_parser_py
# Install additional packages for multiverse_parser
pip install urdf_parser_py

# Install MuJoCo
pip install --break-system-packages --user mujoco==3.1.5
# Install MuJoCo
pip install mujoco==3.1.5

if [ $UBUNTU_VERSION = "20.04" ]; then
# Install additional packages for Jupyter Notebook
pip install --break-system-packages --user panel jupyter-server bash_kernel
pip install panel jupyter-server bash_kernel
python3 -m bash_kernel.install
fi

0 comments on commit 859e951

Please sign in to comment.