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.