-
Notifications
You must be signed in to change notification settings - Fork 286
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
Comments
Does this work?
|
>>> import test
Trackback (most recent call last):
ImportError: No module named 'test'
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 |
For the import error I'm not sure. Looking at the uninstall error I guess you package is an ['.', '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 For the package deletion, you could try: |
ipy -X utf8 pip uninstall test
Lookuperror: unknown encoding: ks_c_5601_1987 |
I was suggesting trying the command with the |
I am always grateful for your kind explanations.
c:\>ipy -X utf8 -m pip list
pip 19.1.1
...
daactor-package 24.3.15.10
./daactor_package-24.3.15.10-py3.4.egg
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']
>>> 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']
|
d:\> ipy setup.py install
The text was updated successfully, but these errors were encountered: