Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for ValueError: check_hostname requires server_hostname #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ You can check the disk quota using the above 2 commands. Normally for home it is
* Open a New Terminal, login into hpc using the ssh command as mentioned in the *Getting Login Access and LOGGING IN* section.
* Now we need to export the http, ftp and https proxy, Run the command
```
export http_proxy=10.10.78.XX:3128
export http_proxy=http://10.10.78.XX:3128
export ftp_proxy=10.10.78.XX:3128
export https_proxy=10.10.78.XX:3128
export https_proxy=http://10.10.78.XX:3128
```
Note that ```XX``` is 22 for B.Tech, 62 for M.Tech and 61 for Ph.D.
* Now you can install the packages from web using pip commands,
Expand Down