DEV Community

hub
hub

Posted on

setting up conda on endeavor-os - with vscode

EndeavourOS is an Arch Linux-based distribution, and Conda is a package manager commonly associated with Anaconda, a distribution for data science and machine learning. Installing Conda on EndeavourOS involves a few steps. Here's a basic guide:

Update System:
Before installing new software, it's always a good idea to ensure your system is up to date. Open a terminal and run the following commands:

bash
Copy code
sudo pacman -Syu
Install Miniconda:
Miniconda is a lightweight version of Anaconda that includes Conda and Python. You can download the latest Miniconda installer from the official website: Miniconda Installer

After downloading, navigate to the directory where the installer is located and run:

bash
Copy code
bash Miniconda3-latest-Linux-x86_64.sh
Follow the on-screen instructions to complete the installation. You may need to close and reopen your terminal or run source ~/.bashrc to update your shell with the new Conda paths.

Initialize Conda:
After installation, you might need to initialize Conda by running:

bash
Copy code
conda init
This command modifies your shell configuration file (like .bashrc or .zshrc) to include Conda in your path.

Verify Installation:
You can check if Conda is installed and working correctly by running:

bash
Copy code
conda --version
This should display the Conda version number.

Create and Activate a Conda Environment:
You can create a new Conda environment using the following command:

bash
Copy code
conda create --name myenv
Replace myenv with the desired name for your environment. To activate the environment, run:

bash
Copy code
conda activate myenv
Your prompt should change, indicating that you are now in the Conda environment.

Remember, Conda is particularly useful for managing Python packages and environments, but it can also handle packages from other languages. If you're using Conda primarily for Python, you might find it beneficial to use virtual environments (venv) along with pip for certain cases, especially if you're working on projects that don't have Conda packages readily available.

User
how to setup vscode in this scenario
ChatGPT
Setting up Visual Studio Code (VSCode) to work with Conda on EndeavourOS involves a few steps. Here's a guide to help you through the process:

Install Visual Studio Code:
You can install VSCode on EndeavourOS using the following commands:

bash
Copy code
sudo pacman -S code
Install the Conda Extension:
Open VSCode, go to the Extensions view by clicking on the Extensions icon in the Activity Bar on the side of the window or using the shortcut Ctrl+Shift+X. Search for "Python" in the Extensions view search box, and you should find an extension called "Python" by Microsoft. Install it.

Configure Python Interpreter:
Once the Python extension is installed, you need to configure the Python interpreter for your project. Open a Python file or create a new one, then click on the lower-right corner where it says "Select Python Interpreter." Choose the Conda environment you created earlier.

Verify Integration:
To verify that VSCode is using the correct Python interpreter, open a terminal within VSCode (View > Terminal or Ctrl+ backtick). Run the following command in the terminal:

bash
Copy code
python --version
Ensure that the version matches the one from your Conda environment.

Install Additional Extensions (Optional):
Depending on your needs, you might want to install additional VSCode extensions for specific languages or tools. For example, if you're working on data science projects, you might want to install extensions for Jupyter Notebooks.

Set Up Git (Optional):
If you're working on projects with version control using Git, make sure Git is installed on your system. You can install it with:

bash
Copy code
sudo pacman -S git
Configure your Git user information:

bash
Copy code
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
If you plan to use VSCode for Git, you might also want to install the "GitLens" extension for enhanced Git functionality.

Now, you should have a functional setup with VSCode and Conda on EndeavourOS. You can start coding and managing your projects in a Conda environment seamlessly using VSCode.

Top comments (0)