简体   繁体   中英

Jupyter notebook launch from shortcut

i was using Anacondas, but decided to switch to miniconda3 package (for weight reduction) so i installed miniconda3 package, and later jupyter notebook. the problem is: i need everytime run "Anaconda Prompt (miniconda3)" with "jupyter notebook" to start notebook.

Is there any way to launch Jupyter Notebook with shortcut, same (or similar) to Anacondas distro?

Ps i am on windows OS

For Windows, you can create a shortcut pointing to the following path:

%PY_HOME%\python.exe %PY_HOME%\cwp.py %PY_HOME% %PY_HOME%\python.exe -m jupyter notebook

Where %PY_HOME% is my environment variable pointing to the Anaconda folder (example: C:\Users\myuser\AppData\Local\Continuum\anaconda3 ). It's useful to use the environment variable because you may run out of characters.

If you want to run a especific environment:

%PY_HOME%\python.exe %PY_HOME%\cwp.py %PY_HOME%\envs\myenvironment %PY_HOME%\envs\myenvironment\python.exe -m jupyter notebook

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