31 Aug 2021 11:30 AM - last edited on 08 Sep 2021 08:37 AM by MaciejNeumann
Hi everyone,
Im looking to install the OneAgent plugin build tools and simulator on my host machine, however im having issues installing it from the .whl file included with the SDK.
In short it looks to be that pip cant reach the download location due to being blocked by network admin.
What I'm looking for is a list of modules that i can have downloaded and installed for me through our IT department.
Thanks,
Ben.
Solved! Go to Solution.
31 Aug 2021 04:02 PM
Briefly looking at the current METADATA of the whl package, these should be the dependencies you need:
Requires-Dist: bottle (>=0.12.9)
Requires-Dist: colorama (>=0.3.7)
Requires-Dist: jsonschema (>=2.5.1)
Requires-Dist: pip (>=7.1.2)
Requires-Dist: requests (>=2.9.1)
Requires-Dist: setuptools (>=18.2)
Requires-Dist: wheel (>=0.26)
However, if you use any module in your code, the Plugin-SDK will need to download it again when packaging, regardless of the fact you already have it installed.
31 Aug 2021 04:08 PM
Thanks for your help@Julius_Loman,
I didnt realise .whls were just .zip in disguise.
31 Aug 2021 04:12 PM
However, if you use any module in your code, the Plugin-SDK will need to download it again when packaging, regardless of the fact you already have it installed.
This is likely to cause me trouble. Again, thanks for your help.