简体   繁体   中英

How to connect NordVPN On Google Colab?

I would like to connect NordVPN on google colab.

For the moment, when I use the command : nordvpn connect us I have this error : Whoops! Connection failed. Please try again. If the problem persists, contact our customer support.

To reproduce the error, create a new notebook and run the following lines :

#install
!wget -qnc https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn-release_1.0.0_all.deb && dpkg -i nordvpn-release_1.0.0_all.deb
!apt-get -qq update
!sudo apt-get -qq download nordvpn
!dpkg --unpack nordvpn*.deb
!rm -f /var/lib/dpkg/info/nordvpn*.postinst
!rm -f /var/lib/dpkg/info/nordvpn*.postrm
!rm -f /var/lib/dpkg/info/nordvpn*.prerm
!apt-get install -yf
!chmod ugo+w /var/lib/nordvpn/data/
!apt-get clean
!rm -rf /tmp/*
!rm -rf /var/tmp/*

!sudo service nordvpn start
!nordvpn login --u=your_username --p=your_password
!nordvpn connect us #The error happens at this point

I don't know how to overcome it right now. Any help is welcome, Thank you in advance

好吧,Google Colab 不允许通过 VPN 工作

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM