warframe algo trader basic setup for windows 10+
catboyprincess (discord) -- 2023-07-20T01:45:08Z
This is the procedure i used (very roughly speaking) to get Warframe Algo Trader working. This is a VERY basic setup, barebones setup guide. might not work, but i tried to make it as simple as possible :)
- go to https://github.com/akmayer/Warframe-Algo-Trader "Code" button download zip -> extract. The "Warframe-Algo-Trader" folder will be called the "project root folder" from hereon.
-
install winget (may come default with up-to-date windows 10+ installations): https://learn.microsoft.com/en-us/windows/package-manager/winget/
A quick way to check if you already have it is to open up your terminal (cmd, or powershell, etc.) (to open cmd, Windows key + R and enter
cmd
) and just enterwinget
. If you don't get an error, and instead get a bunch of info on how to use winget, it's working. - install python: inside your terminal, type in
winget install --id Python.Python.3.11
. -
install node.js version manager for windows (This section uses this guide from Microsoft: https://learn.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows.)
inside your terminal, type in
winget install --id CoreyButler.NVMforWindows
. -
(you may have to restart your terminal to proceed.) type
nvm list available
. You'll get some output that will look like an image from the microsoft link (a table with some versions). Under the heading "LTS", look for the highest/first number. Copy this number. (At time of writing, it is18.17.0
.)with your copied version number, type in:
nvm install <xx.xx.xx>
, replacing<xx.xx.xx>
with the copied number.(you may have to restart your terminal to proceed.) type
nvm use <xx.xx.xx>
. (you may have to restart your terminal to proceed. again.) - go back to https://github.com/akmayer/Warframe-Algo-Trader and follow the readme's steps 1-6.
- During the readme's step 7, disregard the first two sub-steps (they describe using a python script to get your warframe market token). Instead, follow this other guide while logged into warframe market to get your token: https://github.com/NKN1396/warframe.market-api-example. Afterwards, proceed with the rest of the algo trader readme's setup guide.