You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 17, 2024. It is now read-only.
I'm using VPN to connect to the internet (because GitHub is not accessible in my country)
when I run > brownie compile
I get
ConnectionError: Status 404 when getting package versions from Github: 'Not Found'
Missing or forbidden.
If this issue persists, generate a Github API token and store it as the environment variable `GITHUB_TOKEN`:
https://github.blog/2013-05-16-personal-api-tokens/
I think it caused by github rejecting my connection
I've tried to set github_token in dotenv like this:
export GITHUB_TOKEN = 'ghp_00000000000000000000000000000000000000'
also
but getting the same error
also echo $GITHUB_TOKEN
[is blank]
It is possible to install from a private Github repository using an API access token like a personal access token. This can be provided to Brownie via the GITHUB_TOKEN environment variable in the form of username:ghp_token_secret. See also https://docs.github.com/en/rest/overview/
but I don't know what to do in .env or brownie-config.yaml
thank you in advance
The text was updated successfully, but these errors were encountered:
now echo $GITHUB_TOKEN return the value but still no luck
ConnectionError: Status 404 when getting package versions from Github: 'Not Found'
Missing or forbidden.
If this issue persists, generate a Github API token and store it as the environment variable `GITHUB_TOKEN`:
https://github.blog/2013-05-16-personal-api-tokens/
I'm using VPN to connect to the internet (because GitHub is not accessible in my country)
when I run > brownie compile
I get
I think it caused by github rejecting my connection
I've tried to set github_token in dotenv like this:
export GITHUB_TOKEN = 'ghp_00000000000000000000000000000000000000'
also
but getting the same error
also echo $GITHUB_TOKEN
[is blank]
in the brownie docs: https://eth-brownie.readthedocs.io/_/downloads/en/stable/pdf/ page 33 installing from GitHub said :
It is possible to install from a private Github repository using an API access token like a personal access token. This can be provided to Brownie via the GITHUB_TOKEN environment variable in the form of username:ghp_token_secret. See also https://docs.github.com/en/rest/overview/
but I don't know what to do in .env or brownie-config.yaml
thank you in advance
The text was updated successfully, but these errors were encountered: