0

I'm using Jupyter as my notebook for Python. I need to switch to another drive and change from the 64-bit version of Python that I downloaded to the 32-bit version (to be compatible with Microsoft Access and pyodbc). I'm using How can I have two different environments within Anaconda? (both Python 3.7, one 32bit and one 64bit) as a guide.

For this I just open the Anaconda prompt to enter the new drive secured by a VPN:

P:

After setting up the correct directory I change the environment in anaconda by running this in the Anaconda Prompt:

conda create -n py32 python=3.7 -c https://repo.anaconda.com/pkgs/main/win-32 --override-channels

Then I activate it in Anaconda Prompt

conda activate py32

However at this point, I try to open the Jupyter Notebook from the Anaconda prompt using:

jupyter notebook

but I get an error saying " 'jupyter' is not recognized as an internal or external command, operable program or batch file". I'm wondering if anyone has any tips for getting around this problem or why 'jupyter' isn't recognized anymore.

MattDMo
  • 100,794
  • 21
  • 241
  • 231
Bojan Milinic
  • 93
  • 1
  • 1
  • 7
  • 2
    If you're using a different Python interpreter, you need to install `jupyter` and all its dependencies first before you can use it. – MattDMo Oct 14 '22 at 15:17

0 Answers0