The current CLI tool for JFrog ML only supports Python versions < 3.10. This example environment setup is designed to help developers use JFrog ML more effectively by creating a Conda environment with the required Python version and dependencies.
- Clone this repository.
- Install Conda, Poetry, and Python 3.9.
- A termial or command line interface with Conda and Python installed. JFrog ML supports < 3.10 versions of Python.
- A Poetry installation for managing Python dependencies.
- Create a Conda environment with the required Python version and dependencies.
conda create --prefix ./env python=3.9
- Activate the Conda environment.
conda activate ./env
python -V
- Install the required dependencies using Conda
conda install jupyter pandas numpy matplotlib scikit-learn tqdm
- Install Python dependencies for ML
pip install torch torchvision torchaudio
- Install the JFrog ML SDK
pip install qwak-sdk
Now that you have set up the environment, you can start using the JFrog ML SDK to build, train, and deploy ML models. For more information, refer to the JFrog ML Documentation.