Conda installed scalene python package not executing

186 Views Asked by At

I get the following error when I try to run scalene from the command line:

Fatal error in launcher: Unable to create process using '"D:\bld\scalene_1668720941069\_h_env\python.exe"  "C:\Users\<user>\anaconda3\envs\gis\Scripts\scalene.exe"
1

There are 1 best solutions below

0
On

Try to uninstall scalene with conda:

conda remove scalene

And install it with pip:

python3 -m pip install -U scalene

It helped in my case.