cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Check out the JMP® Marketplace featured Capability Explorer add-in
Choose Language Hide Translation Bar
lala
Level VIII

Can python in a JMP environment get the vscode environment?

Thanks Experts!

 

There is a data interface that requires a 32-bit python interpreter to receive it.To emulate vscode running this 32-bit python.
The above operations can be implemented in python in the JMP environment
Its original installation requirements are:

#Create a 32-bit Python environment
conda create --name stock python=3.8 --platform win-32
#Change the conda source
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/linux-64/
conda config --set show_channel_urls yes
#Change the pip source
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
#Install necessary libraries
pip install pywin32
pip install pytz
#Then pywin32 needs to be installed manually
python
C:\Users\tj07166.conda\envs\stock\Scripts\pywin32_postinstall.py -install

#Use Git to manage projects
First, create a remote repository, and then conduct git init locally to create a local repository.
Write a .gitignore file, and after performing add and commit, push it to the remote branch.
Install Git on the remote host, generate an SSH public key and fill it into the GitHub repository.
Use git clone.
2 REPLIES 2
lala
Level VIII

Re: Can python in a JMP environment get the vscode environment?

OS win10

lala
Level VIII

Re: Can python in a JMP environment get the vscode environment?

  • How to install pywin32?