How to Resolve "conda: command not found" Error and Run Conda on Linux
You have successfully installed Anaconda and can execute Python, indicating a successful installation. However, you encounter an error when attempting to install Python v3.3 using the following command:
conda create -n py33 python=3.3 anaconda
This error indicates that Conda is not recognized as a command.
Troubleshooting:
To resolve this issue, ensure that the Anaconda environment path is added to your system's path:
For Anaconda 2:
export PATH=~/anaconda2/bin:$PATH
For Anaconda 3:
export PATH=~/anaconda3/bin:$PATH
For Anaconda 4:
Access the Anaconda Prompt and execute:
conda --version
This should confirm that Conda is functioning correctly.
Alternative Solutions:
conda install anaconda-navigator
By implementing these steps, you should be able to successfully run Conda on your Linux system.
The above is the detailed content of Why Can't I Find the `conda` Command on My Linux System, and How Do I Fix It?. For more information, please follow other related articles on the PHP Chinese website!