I’m very new to Anaconda, but I’m using Lee Vaughn’s book, Python Tools for Scientists. I somehow managed a successful conda-build for the pypi galgebra and have been trying, unsuccessfully, to upload that build using anaconda upload in Anaconda Prompt. I keep getting an “Invalid username/password combination” error. I received the message from the “discobot” telling me about “preferences,” where I find my username to be Wes_Hansen. I tried, after several failures, changing my password, but I still get the same message from prompt. I’ve looked into anaconda client config, but I don’t see anything helpful there, although I did try anaconda login, receiving the same error. Perhaps someone has already resolved this same issue and can clue me in?
嗨!要了解我能说什么,请说 @discobot 显示帮助
。
It sounds like you’re running into authentication issues with Anaconda Client. Here are a few things you can try:
- Check Your Credentials – Ensure you’re using the correct username and password. Sometimes, special characters in passwords can cause issues.
- Use an API Token – Instead of logging in with a password, try generating an API token from your Anaconda Cloud account and use
anaconda login --token <your_token>
. - Update Anaconda Client – Run
conda update anaconda-client
to ensure you’re using the latest version. - Check Config Settings – Run
anaconda config --show
to verify your settings. You may need to reset them withanaconda config --set auto_login yes
. - Try Logging in via Browser – If login via the prompt fails, attempt signing in through the Anaconda website to confirm your credentials work.