Steps to install Miniconda and Conda Environment for Odoo
Here’s a cleaner and more structured steps to install Miniconda, set up a Conda environment, and install packages:
✅ Steps to Set Up Miniconda and Conda Environment for Odoo
1. Open Terminal
2. Download the Latest Miniconda Installer for Linux
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
3. Run the Installer
bash Miniconda3-latest-Linux-x86_64.sh
Follow the prompts to complete the installation.
4. Initialize Conda
After installation, either restart your terminal or run:
source ~/.bashrc
5. Verify Conda Installation
conda --version
6. Create a New Conda Environment for Odoo
conda create --name odoo17 python=3.10
7. Activate the Environment
conda activate odoo17
8. Install Required Packages (e.g., PyTorch)
conda install pytorch torchvision torchaudio cpuonly -c pytorch
💡 You can install any additional packages as needed using
conda install <package-name>
.
do_website_chatbot
Module
9. Set Odoo Path and Install - Navigate to your Odoo installation directory.
- Make sure the custom addons path includes the
do_website_chatbot
module. - You may need to update the Odoo config (
odoo.conf
) or set the path via command line:
./odoo-bin -c odoo.conf --addons-path=addons,custom_addons/do_website_chatbot