0

I'm trying to install pythonnet in order to use clr module. But it doesn't work ...

Here is my command "Conda install -c pythonnet pythonnet"

and here as the results :

enter image description here enter image description here

I tried several time to reinstall but i still have the same problem ...

Thank you and have a nice day !

Jess
  • 103
  • 6

1 Answers1

0

if conda install does not work, try pip install pythonnet. Better, python -m pip install pythonnet. It is ok to use pip within conda. use conda as your first choice whenever you can. pip is the 2nd choice.

Note that pythonnet as of today still only support up to 3.7, according to https://pypi.org/project/pythonnet/, although 3.8.1 according to https://github.com/pythonnet/pythonnet

willhyper
  • 96
  • 2
  • 5