[Git] Frequently Asked Questions

1. gitee

1.1 fatal: Authentication failed for …

The solution to the problems encountered on idea is to open this page of idea and log in again...
insert image description here

2. git bash

2.1 Using conda in git bash

First of all, we need to make it clear that we are downloading KNN-CUDA for the virtual environment under conda, so the first question arises: how to use conda in git bash.

Reference: Setting up Conda in Git Bash

Open the anaconda/etc/profile.d folder, right-click Git Bash Here, and enter the command:

echo ". ${
     
     PWD}/conda.sh" >> ~/.bashrc

Reopen Git Bash, and type:

conda activate env_name

Guess you like

Origin blog.csdn.net/Kandy0125/article/details/121620587