Error: Detected unknown package 'contrib-pysite'
See original GitHub issueWhat kind of issue is this?
- PlatformIO Core. If you’ve found a bug, please provide an information below.
Configuration
Operating system: Ubuntu 18.04
PlatformIO Version (platformio --version
): PlatformIO, version 3.6.6
Description of problem
After a fresh install of PlatformIO, I cannot run pio home
because it’s unable to install contrib-pysite
Steps to Reproduce
- Get a fresh install of PlatformIO with
pip uninstall platformio
,rm -rf ~/.platformio
, 'pip install -U platformio`. - Run
pio home
Actual Results
$ pio home
CorePackageManager: Installing tool-pioplus @ ^2.0.0
Downloading [####################################] 100%
Unpacking [####################################] 100%
tool-pioplus @ 2.1.3 has been successfully installed!
CorePackageManager: Installing contrib-pysite @ ~2.27.0 Error: Detected unknown package ‘contrib-pysite’
Expected Results
pio home should install required packages and run successfully.
Additional info
I’ve checked that my internet connection is working. It always fails on this specific package (I can install any other package).
I’ve also tried downloading a contrib-pysite package from https://bintray.com/platformio/dl-packages/contrib-pysite#files, then installing with pio platform install file://contrib-pysite-linux_x86_64-2.27.181225.tar.gz
, but this fails with:
Unpacking [####################################] 100%
Error: Could not find one of 'platform.json' manifest files in the package
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (2 by maintainers)
This is a bug with our CDN and has been just fixed. Please Restart VSCode and re-run
$ pio update
. Sorry.Nice one - that’s looking much better now. Thanks for sorting that out so quickly!