简体   繁体   中英

Cannot run conda command 'activate' with NppExec plugin of Notepad++

If I run

activate my_environment

from a command prompt conda correctly switches to the desired environment, but if I execute the following temporary script from NppExec plugin

activate my_environment
python "$(FULL_CURRENT_PATH)"

I get the error message

CreateProcess() failed with error code 2:
Impossibile trovare il file specificato.

where last line means "file not found". If I omit the activate line the script runs as expected.

Any clue?

I got anaconda environment working from within nppExec using,

cd <AnacondaPath>\Anaconda3\condabin
activate.bat <env name> & python -i "$(FULL_CURRENT_PATH)"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM