Installing Dependencies
Procedure
- Use PuTTY to log in to the server as the root user.
- Install Python.
yum install python3-devel python3-pip
- Check whether Python is successfully installed.
python3 --version
If the correct version is displayed, the installation is successful.
- Create a Theano virtual environment.
pip3 install virtualenv mkdir -p /path/to/theano python3 -m venv /path/to/theano
Parent topic: Configuring the Compilation Environment