Installing Python
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 Lasagne virtual environment.
pip3 install virtualenv mkdir -p /path/to/Lasagne python3 -m venv /path/to/Lasagne
Parent topic: Configuring the Compilation Environment