Currently in the Makefile, the credentials are hardcoded to "spring26", instead of using the env variables:
|
PIP_FLAGS = --extra-index-url=https://spring26:spring26@pypi.netsquid.org |
Above should instead be:
PIP_FLAGS = --extra-index-url=https://$(NETSQUID_USER):$(NETSQUID_PWD)@pypi.netsquid.org
Currently in the Makefile, the credentials are hardcoded to "spring26", instead of using the env variables:
netsquid-tutorial/Makefile
Line 9 in da52776
Above should instead be:
PIP_FLAGS = --extra-index-url=https://$(NETSQUID_USER):$(NETSQUID_PWD)@pypi.netsquid.org