ironpython3 icon indicating copy to clipboard operation
ironpython3 copied to clipboard

Install setup.py

Open nalsandori opened this issue 10 months ago • 6 comments

  • setup.py
from setuptools import setup
  • windows 10> cmd
d:\> ipy setup.py install
  • Result
...
c:\program files\Ironpython 3.4\lib\site.py, line 162, in addpackage
...
c:\program fIles\IronPython 3.4\lib\site.py, line 564, in <module>
Lookuperror: unknown encoding: cp949
  • So, I modified code in site.py
def addpackage(sitedir, name, known_paths):
    ...
    fullname = os.path.join(sitedir, name)
    try:
        f = open(fullname, "r")  #occured error
        #f = open(fullname, "r", encoding='utf8')
  • It was good working when I added encoding='utf8'
  • It is possible to set setlocale to utf8 without modifying the library?

nalsandori avatar Apr 19 '24 01:04 nalsandori

Does this work?

ipy -X utf8 setup.py install

slozier avatar Apr 19 '24 13:04 slozier

  • The command worked well
  • I even checked that it was installed in test_package-py3.4.egg\site-package folder
  • However, I have two questions
  • When I try to import a package from ironpython Console, There is an Importerror: No module named
>>> import test
Trackback (most recent call last):
ImportError: No module named 'test' 
  • How do I delete the package?
  c:\test>ipy -X utf8 pip uninstall test
  Uninstalling test_package:
    Would remove:
      c:\program files\ironpython 3.4\lib\site-packages\test_package-py3.4.egg
  Proceed (y/n)? Error: Exceptions
  Traceback (most recent call last):
    FIle "...\site-packages\pip\_internal\cli\base_command.py", line 178, in main status = self.run(options, args)
    ...
    File "...\pip\_internal\req\req_uninstall.py", line 425, in _allowed_to_proceed
      return ask('Proceed (y/n)? ', ('y', 'n')) == 'y'
    File "...\pip\_internal\utils\misc.py", line 183, in ask response = input(message)
  Lookyperror: unknown encoding: ks_c_5601_1987

nalsandori avatar Apr 22 '24 00:04 nalsandori

For the import error I'm not sure. Looking at the uninstall error I guess you package is an egg file? Does it appear in your sys.path? For example:

['.', 'C:\\Program Files\\IronPython 3.4\\lib', ..., 'C:\\Program Files\\IronPython 3.4\\lib\\site-packages', 'C:\\Program Files\\IronPython 3.4\\lib\\site-packages\\mytest-0.1-py3.4.egg']

I don't know much about egg files, but I think they're basically just zip files. Once they're in sys.path the import mechanism should be able to load them. It looks like this is normally done via .pth files...

For the package deletion, you could try: ipy -m pip uninstall -y test so it skips the input prompt (which has issues with encoding).

slozier avatar Apr 23 '24 01:04 slozier

  • When the command "ipy -X utf8 pip list" is executed, the test_package will be displayes
  • Of course, the file also exists in the path below as follows

    c:\program files\Ironpython 3.4\Lib\site-packages\test_package-24.3.15.10-py3.4.egg\

  • In addition, after completing the installation of the package in python, we are importing and using it without "sys.path.append"
  • Finally, I already know the command, but I additionally inquire if it can be executed without the following error message
ipy -X utf8 pip uninstall test
Lookuperror: unknown encoding: ks_c_5601_1987

nalsandori avatar Apr 23 '24 02:04 nalsandori

* Finally, I already know the command, but I additionally inquire if it can be executed without the following error message

I was suggesting trying the command with the -y argument: ipy -m pip uninstall -y test

slozier avatar Apr 25 '24 00:04 slozier

I am always grateful for your kind explanations.

  • That will be the last question
  • There is a folder(./IronPython 3.4/Lib/site-packages/daactor_package-24.3.15.10-py3.4.egg)
  • i checked package list
c:\>ipy -X utf8 -m pip list
pip  19.1.1
...
daactor-package 24.3.15.10
  • in site-packages/easy-install.pth file
./daactor_package-24.3.15.10-py3.4.egg
  • I confirmed that the following input works normally in window cmd
c:\>ipy -X utf8
>>> ironpython 3.4.1 ... for more information
>>> import daactor        #it was good working
>>> sys.path
['.', 'c:\\IronPython 3.4\\', 'c:\\IronPython 3.4\\Lib', 'c:\\IronPython 3.4\\lib\\site-packages\\daactor_package-24.3.15.10-py3.4.egg']
  • I run IronPython Console
>>> Ironpython 3.4.1 ... for more information
>>> import daactor
ImportError: no module named 'daactor'
>>> sys.path
['.', 'c:\\Ironpython 3.4\\lib', 'c:\\Ironpython 3.4\\Lib\\site-packages', c:\\Ironpython 3.4\\DLLs', 'c:\\Ironpython 3.4']
  • However, I could not import daactor package
  • How can I import daactor package in ironPython console?

nalsandori avatar Apr 26 '24 07:04 nalsandori