Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install setup.py #1794

Open
nalsandori opened this issue Apr 19, 2024 · 6 comments
Open

Install setup.py #1794

nalsandori opened this issue Apr 19, 2024 · 6 comments

Comments

@nalsandori
Copy link

  • 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?
@slozier
Copy link
Contributor

slozier commented Apr 19, 2024

Does this work?

ipy -X utf8 setup.py install

@nalsandori
Copy link
Author

nalsandori commented Apr 22, 2024

  • 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

@slozier
Copy link
Contributor

slozier commented Apr 23, 2024

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).

@nalsandori
Copy link
Author

nalsandori commented Apr 23, 2024

  • 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

@slozier
Copy link
Contributor

slozier commented Apr 25, 2024

* 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

@nalsandori
Copy link
Author

nalsandori commented Apr 26, 2024

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants