Tag Archives: The system configuration

Cannot set up a python SDK Python 2.7. The SDK sees invalid

Cannot set up a python SDK Python2.7. The SDK seems invalid.

That is, how to configure is always the case, that is, no successful configuration.

terms of settlement:

Then I refer to the following blog for relevant configuration. https://blog.csdn.net/qinglingLS/article/details/90444765 (in great detail).

Then, I shut down pychar directly, and then I succeeded directly. (this step is very important, which is equivalent to system restart.)

In this case, you need to configure the virtual environment and restart it.

 

Reference link:

https://segmentfault.com/a/1190000016359027

https://blog.csdn.net/qinglingLS/article/details/90444765

https://stackoverflow.com/questions/44892762/pycharm-anaconda2-windows7-py35-environment-sdk-error

There are three ways to deal with the problem of vs (Visual Studio) 2017 flashback. I feel that none of them is the fundamental solution.

There are three ways to deal with the VS2017 flashback problem, but none of them is the ultimate solution.
1, Ctrl + F5
2, the system (” pause “);
3, getchar ();
Personally, I feel that these three methods are not the fundamental solution. I also have a headache when I meet this problem. People with obsessive-compulsive disorder see this phenomenon very uncomfortable.
I hope you can see this blog and if you have a better way, you can leave a comment below to benefit more people with your good way.

Advantages and disadvantages of various methods:
System (“pause”) : need to include the preprocessor header # include<; stdlib.h> Or # include< windows.h> Usage: Before the return in main Advantages: solve the flashback problem, small side effects Disadvantages: call system function, large memory overhead Getchar () : Usage: Before the return in main Advantages: low overhead, receive a character to end the program Cons: getchar() takes a string to denote the end. Sometimes we need to use this function in a function, which can confuse the two functions in a program and cause errors when the program runs. Reference links: http://blog.csdn.net/sinat_36101354/article/details/53155836