installation

Error – cannot install Miniconda with RStudio

Error – cannot install Miniconda with RStudio Question: I have written a R script where I use some python lines through the reticulate package. I need to share it with some colleagues who don’t know about programming and I’ve created a batch file so I can run it without them even opening R. However, I …

Total answers: 1

poetry installation failing on Mac OS, says "should_use_symlinks"

poetry installation failing on Mac OS, says "should_use_symlinks" Question: I am trying to install poetry using the following command curl -sSL https://install.python-poetry.org | python3 – but it is failing with the following exception: Exception: This build of python cannot create venvs without using symlinks Below is the text detailing the error Retrieving Poetry metadata # …

Total answers: 4

pip install planemo fails with error: "ERROR: Could not install packages due to an OSError: [Errno 13] Permission denied: '/usr/local/locale'"

pip install planemo fails with error: "ERROR: Could not install packages due to an OSError: [Errno 13] Permission denied: '/usr/local/locale'" Question: I am trying to install planemo like so: /usr/local/bin/pip3 install virtualenv virtualenv .venv . .venv/bin/activate /usr/local/bin/pip3 install planemo The last command fails with this error message: ERROR: Could not install packages due to an …

Total answers: 3

Conda is installing a very old version of pytorch-lightning

Conda is installing a very old version of pytorch-lightning Question: I tried installing pytorch lightning by runnning: conda install -c conda-forge pytorch-lightning as described here: https://anaconda.org/conda-forge/pytorch-lightning This link seems updated to version 1.6.5 However, when I run this command, an old version of pytorch-lightning is installed, as can be seen here: > The following NEW …

Total answers: 2

Error during installtion of bluepy using pip 22.2

Error during installtion of bluepy using pip 22.2 Question: I`m trying to install bluepy with Python3.9.10 and pip 22.2 installed. While doing that I keep getting the following output: C:UsersUser>pip3 install bluepy Collecting bluepy Using cached bluepy-1.3.0.tar.gz (217 kB) Preparing metadata (setup.py) … done Using legacy ‘setup.py install’ for bluepy, since package ‘wheel’ is not …

Total answers: 1

Solving a pip issue using a range vs removing package range altogether

Solving a pip issue using a range vs removing package range altogether Question: I’m getting a conflict with a pip install and I get this message: To fix this you could try to: 1. loosen the range of package versions you’ve specified 2. remove package versions to allow pip attempt to solve the dependency conflict …

Total answers: 2

Python package with optional namespace sub-packages

Python package with optional namespace sub-packages Question: Problem I am struggling to create a single entry point for installing a python package that leverages namespace sub-package to allow users to optionally download additional modules. Below is the piece I am struggling with in this example. I have also provided additional context below as well to …

Total answers: 1

Not able to install anaconda on linux, getting error path_to_dir/conda.exe : Permisison denied

Not able to install anaconda on linux, getting error path_to_dir/conda.exe : Permisison denied Question: I’m trying to install anaconda on my Ubuntu 20.04. It is giving me error [/home_dir/anaconda3] >>> /mount_path of different_ssd/anaconda3 PREFIX=/mount_path of different_ssd/anaconda3 Unpacking payload … Anaconda3-2022.05-Linux-x86_64.sh: line 407: /mount_path of different_ssd/anaconda3/conda.exe: Permission denied Anaconda3-2022.05-Linux-x86_64.sh: line 409: /mount_path of different_ssd/anaconda3/conda.exe: Permission denied …

Total answers: 2

Windows 11 can't install pygame?

Windows 11 can't install pygame? Question: Yes, just as I said, my new laptop doesn’t want to download pygame for me. It’s running Windows 11, maybe it has something to do with it (?) Anyways, here is what my lovely machine responded to a simple "pip install pygame": C:UsersUser>pip install pygame Collecting pygame Downloading pygame-2.1.2-cp310-cp310-win_amd64.whl …

Total answers: 2

How to install python specific version on docker?

How to install python specific version on docker? Question: I need to install python 3.8.10 in a container running ubuntu 16.04. 16.04 has no support anymore, so I need a way to install it there manually. Asked By: Gulzar || Source Answers: This follows from here Add the following to your dockerfile, and change the …

Total answers: 1