PyCharm2018基礎環境配置【堅持實測】

搭建PyCharm2018環境

1、安裝PyCharm

PyCharm 2018.3.3 (Professional Edition)   安裝環境:win7 64位

2、激活PyCharm

2.1 C:\Windows\System32\drivers\etc下hosts文件,   添加一行:0.0.0.0 account.jetbrains.com                                                          

2.2運行PyCharm,輸入激活碼:  JKHX300590-(此處省略,需要的可以私信我)

2.3 查看激活信息:
     Build #PY-183.5153.39, built on January 10, 2019
     Licensed to Nicole Powell
    Subscription is active until September 25, 2019
    JRE: 1.8.0_152-release-1343-b26 amd64
   JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
   Windows 7 6.1

3、安裝Python
     官網下載:python-3.7.2-amd64  
     安裝到默認路徑中c:\users\Administrator\AppData\Local\Programs\Python\Python37(也可以指定安裝目錄)
 

4、安裝數據庫MySql
    
mysql-5.7.10-win32安裝完成後,必須進入以下配置
     在安裝目錄的bin目錄下執行
    4.1、mysqld --initialize 初始化Data目錄
    4.2、mysqld --skip-grant-tables  繞過權限(始終保持)
    再開一個窗口
   
1、mysql -u root -p 提示輸入密碼,直接回車(無密碼)
    2、mysql> update mysql.user set authentication_string=password('gggggg') where user='root';
    3、mysql> flush privileges;
    4、mysql> set password for 'root'@'localhost'=password('123456');
    5、mysql>alter user 'root'@'localhost' password expire never;
    6、quit;
   

5、安裝數據庫mysql-workbench-community-8.0.14-winx64
安裝完成後,Database菜單-->Connect to Database 進行設置;設置成功後,可以在INSTANCE中啓停mysql服務

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章