Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to create process using '"c:\bld\scrapy_1564674375870\_h_env\python.exe"

I'm trying to install Scrapy with Anaconda

After downloading scrapy by command conda install -c conda-forge scrapy and then giving the path of Anaconda/Scripts to environmental variables, I'm getting following error:

    C:\Users\Rodzice.Mateusz-PC>scrapy
Fatal error in launcher: Unable to create process using '"c:\bld\scrapy_1564674375870\_h_env\python.exe"  "C:\Users\Rodzice.Mateusz-PC\Anaconda3\Scripts\scrapy.exe"

I'm getting this error in both cmd and Anaconda

like image 281
Mateusz Pełechaty Avatar asked Aug 03 '19 14:08

Mateusz Pełechaty


2 Answers

python -m scrapy startproject papa

It works

I don't know why :)

like image 100
xinyu3ru Avatar answered Oct 20 '22 01:10

xinyu3ru


Force reinstalling scrapy using pip solved the problem.

pip install --force-reinstall scrapy
like image 25
dejohnua Avatar answered Oct 20 '22 00:10

dejohnua