25 lines
446 B
Markdown
25 lines
446 B
Markdown
setup miniconda:
|
|
|
|
|
|
conda create --name petals #python=3.10
|
|
conda activte
|
|
conda install pip
|
|
pip install -r requirements.txt
|
|
#pip install petals
|
|
pip install aider-chat
|
|
export OPENAI_API_KEY=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
|
|
|
|
|
|
# remove >
|
|
conda deactivate
|
|
conda env remove --name petals
|
|
|
|
|
|
# conda install node
|
|
conda install -c conda-forge nodejs
|
|
conda update -c conda-forge nodejs
|
|
|
|
# get package location
|
|
pip show {package[pip]}
|
|
|