An exception occurred while running Ice (linux)
See original GitHub issueI’m running Ubuntu 16.04. Here is what I did to install Ice
. Virtualenv installation went well.
$ git clone https://github.com/scottrice/Ice
$ virtualenv Ice
$ source bin/activate
$ python setup.py install
Configured config.txt
, consoles.txt
and emulators.txt
following the Getting Started Guide.
Finally:
$ python -m ice
[ERROR] An exception occurred while running Ice
Traceback (most recent call last):
File "ice/decorators.py", line 10, in wrapped
func(*args, **kwargs)
File "ice/cli/runner.py", line 84, in run
self.get_steam(app_settings.config),
File "ice/tasks/engine.py", line 27, in __init__
self.users = filter(is_user_context, steam_module.local_user_contexts(self.steam))
TypeError: 'NoneType' object is not iterable
Close the window, or hit enter to exit...
Any suggestions?
Issue Analytics
- State:
- Created 7 years ago
- Comments:10
Top Results From Across the Web
I.C.E. failure - Linux Mint Forums
Re: I.C.E. failure ... You have errors in how you entered the command. I would suggest you use the copy/paste method of executing...
Read more >[SRU] Ice driver causes the kernel to crash with Ubuntu 20.04 ...
When we run the command, ethtool -d <interface_name> with Intel cards (ice driver), the kernel crashes because of the ice driver.
Read more >SC584 Ez: Boot stuck when running u-boot loaded through ...
Hi everyone! I am an novice at Linux embedded development, but we have need for setting up Linux environment for ADSP-SC584 EZ Board....
Read more >ICE default IO error handler doing an exit(), pid = ..., errno = 32 ...
I am running python 3.4.3 on xubuntu ...
Read more >How to fix a "Command not found" error in Linux - Red Hat
When you're trying to run a command (with or without sudo ) and get an error message that reads "Command not found," this...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ok, haven’t really heard from Scott Rice. I’ll fork and try to see what I can do.
Steam recently (?) changed their userdata install location on Linux from
~/.local/share/Steam/userdata
to~/.steam/steam/userdata
. So this is a problem with pysteam not finding the Steam config files. I’m submitting a pull request to fix it.PR: https://github.com/scottrice/pysteam/pull/11 Not sure if this will completely fix Ice on Linux though. I only ran into this problem when trying to use pysteam for my own project.