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
Due to the change in change in the Pip code has changed its behavior to be more strict with respect to file: URI syntax. As pointed out by a PyPA member and Pip developer, the syntax file:requirements.txt is not a valid URI according to the RFC8089 specification.
line 22 in environment.yml need a change
to avoid following error
Hi,
Due to the change in change in the Pip code has changed its behavior to be more strict with respect to
file:
URI syntax. As pointed out by a PyPA member and Pip developer, the syntax file:requirements.txt is not a valid URI according to the RFC8089 specification.line 22 in environment.yml need a change
to avoid following error
Current:
- -r file:requirements.txt
should be changed to
Update:
- -r requirements.txt
stack-overflow solution
Thank you
The text was updated successfully, but these errors were encountered: