While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- Oh dear - ARC Raiders was logging your private Discord chats [updated]
- Many more US states are planning or already have operating system age verification laws
- Ubuntu and Fedora devs comment on California's new Digital Age Assurance Act
- EA Javelin Anticheat job listing mentions future support for Linux and Proton
- Sony PlayStation reportedly moving away from PC ports
- > See more over 30 days here
Recently Updated
- Recommendations for portable monitor for Steam Deck?
- childermass - Shop Crush - Psychological Horror Thrift Sim with Literal Illusio…
- hollowlimb - Introduce Yourself!
- hollowlimb - Proton/Wine Games Locking Up
- Caldathras - recently released super fun crpg - Sector Unknown
- Jarmer - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
I’ve been playing a lot of Elite: Dangerous since I got my Valve Index VR headset. As a result, I decided I’d try my hand at mining, and found myself on sites like [EDTools](https://edtools.cc/) to look for good mining lcoations.
That, in turn, led me to realise that there’s a whole sub-culture of plug-ins and third party tools like [Inara](https://inara.cz/) that track in-game buy/sell prices for the Market. What really surprised me though, was learning that these prices aren’t “official”. They’re literally crowd-sourced and contributed by players who use third party tools like the Market Connector while they’re playing.
So how do we get this running on Linux? Well, [this post](https://forums.frontier.co.uk/threads/how-to-install-ed-on-linux-using-wine-experimental-not-officially-supported.366894/page-56#post-7945953) was incredibly useful, if slightly incomplete, so I thought I’d outline the process here, for Mint 20 (also tested Pop!_OS 20.04).
Turns out, the Market Connector is just a python app, and while there’s a Windows executable version available (because Windows peeps like their one-click installs), it’s far easier just to clone the original project and run it directly. So that’s what we’ll do, in four pretty simple (or at least "automated") steps.
Step One – Set up the dependencies
sudo apt install pip3 python3-iniparse python3-requests python3-tk python3-semantic-version gitDone. What’s next?
Step Two – Grab the project
git clone https://github.com/Marginal/EDMarketConnector.git ~/Games/EDMCthen
cd ~/Games/EDMCgit checkout stable
That puts the project into its own EDMC directory inside my home’s Games directory. Feel free to customise, but if you do, you’ll have to customise the launch script in step four.
Step Three – Install its requirements
This is why we installed pip3 earlier.
pip3 -r requirements.txtThis command will read EDMC's requirements.txt file and install a few, more updated, versions of the python modules that this little tool needs to get working. Out of the box in most distros, certain modules, like requests are out of date, and EDMC will almost certainly fail to start.
Step Four – Run it
python3 ~/Games/EDMC/EDMarketConnector.pyYou should get the little GUI appearing, but you might, like me, get an error that it can’t find the journal.
If you do, click on File, then Settings, then choose the Configuration tab. I had to browse to the journal directory before the client kicked into life. My journal file was here, and this will probably be the same as your own:
~/.steam/steam/steamapps/compatdata/359320/pfx/drive_c/users/steamuser/Saved Games/Frontier Developments/Elite DangerousWhen it did, it also launches you to an E:D connector page where you authorise the app to connect to your account.
Last edited by scaine on 1 Mar 2021 at 7:44 pm UTC