Github 0.1 How to make a fork of pubilc repository to private?

Fork the original github repository to mine. Create a new repository in your github repository. Clone the public repository using options –baregit clone –bare https://github.com/exampleuser/public-repo.gitcd public-repo.gitgit push –mirror https://github.com/yourname/private-repo.gitcd ..rm -rf public-repo.git Clone the private repository to work on.git clone https://github.com/yourname/private-repo.gitcd private-repogit remote set-url –push origin https://github.com/mirroredmake some changesgit commitgit push origin master Pull recent update from the public repositorycd private-repogit remote add public https://github.com/yourname/private-repo.gitgit pull public mastergit push origin master Reference : https://medium.com/@bilalbayasut/github-how-to-make-a-fork-of-public-repository-private-6ee8cacaf9d3 Github 0.1 How to make a fork of pubilc repository to private? 더보기

2020.02.03 How to install Anaconda in Ubuntu 18.04?

Today, I will install Anaconda environments to my new computer environment – Ubuntu 18.04. Following this site and instructions from Stanford university, I downloaded Anaconda 3 from the website here. I chose the Python 3.7 version of 64-Bit Installer as the downloaded version. After downloading, I made the vertual environment named cs231n with this command. conda create -n myenv python=3.7 activate myenv deactivate myenv If I want to install specific libraries with specific version, I have to type the following commands below. conda install -n myenv scipy=0.15.0 If I want to check the environment setup for my conda, type the … 2020.02.03 How to install Anaconda in Ubuntu 18.04? 더보기