-
Notifications
You must be signed in to change notification settings - Fork 0
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
radicl crashes in Windows when started #5
Comments
Awesome thanks @arothenbuhler . I am working on it. I have a disconnect it looks like between develop and master. I am going to merge those together and push. So I may have you pull to confirm this is still the case |
could you try two things for me? First pull from develop again. then.
Let me know if those fail, and if so their tracebacks. |
During handling of the above exception, another exception occurred: Traceback (most recent call last):
|
ok great. I think I am on to the reason. Standby. |
Could you post the result of |
pip install -r requirements.txt ended with: Then pythong setup.py install seems to work ok, but running radicl still crashes: Traceback (most recent call last): |
Dangit. This is a moving target. This seems like a ANSI chars arent visible on your machine. I was able to get radicl working on my W10 at home (which I am away right now). So I don't understand why this is saying this. |
@arothenbuhler could you post the results of could you also share some about the dev environment you are using? |
$ pip freeze I'm using python from the command line. I run it from git bash. When developing my own python applications I like to use PyCharm, because it's much nicer for debugging, but for radicl I'm running it straight from the command line. |
I wonder if git bash is preventing the ansi colors from being shown. I have been using powershell and getting it to work on my windows 10 machine.
|
Haha, it works if I run it from the regular Windows command line. That's a bit odd though since python is supposed to be platform independent... |
Right but I think its more that git bash isn't written to handle everything and apparently that includes some ansi code chars. lol |
Still having some issues. I can run radicl and it connects to the probe, but when I attempt to take an accelerometer reading, it crashes. Traceback (most recent call last): |
Description
radicl crashes right away when starting it from the command line.
Traceback (most recent call last):
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\lib\site-packages\pkg_resources_init_.py", line 659, in build_master
ws.require(requires)
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\lib\site-packages\pkg_resources_init.py", line 967, in require
needed = self.resolve(parse_requirements(requirements))
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\lib\site-packages\pkg_resources_init_.py", line 858, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.ContextualVersionConflict: (setuptools 28.8.0 (c:\users\adrian rothenbuhler\appdata\local\programs\python\python36\lib\site-packages), Requirement.parse('setuptools>=30.0.0'), {'tox'})
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\Scripts\radicl-script.py", line 6, in
from pkg_resources import load_entry_point
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\lib\site-packages\pkg_resources_init_.py", line 3017, in
@call_aside
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\lib\site-packages\pkg_resources_init.py", line 3003, in call_aside
f(*args, **kwargs)
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\lib\site-packages\pkg_resources_init.py", line 3030, in _initialize_master_working_set
working_set = WorkingSet.build_master()
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\lib\site-packages\pkg_resources_init.py", line 661, in _build_master
return cls.build_from_requirements(requires)
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\lib\site-packages\pkg_resources_init.py", line 674, in build_from_requirements
dists = ws.resolve(reqs, Environment())
File "C:\Users\Adrian Rothenbuhler\AppData\Local\Programs\Python\Python36\lib\site-packages\pkg_resources_init.py", line 858, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.ContextualVersionConflict: (setuptools 28.8.0 (c:\users\adrian rothenbuhler\appdata\local\programs\python\python36\lib\site-packages), Requirement.parse('setuptools>=30.0.0'), {'tox'})
The text was updated successfully, but these errors were encountered: