Visual Python Manual
  • Visual Python Manual
  • GETTING STARTED
    • Welcome to Visual Python
    • How to install
    • Installing FAQ
    • Official homepage
    • Link to Github
  • Data Analysis
    • 1. Import
    • 2. File
    • 3. Data Info
    • 4. Frame
      • 4-1. Frame - Edit
      • 4-2. Frame - Transform
      • 4-3. Frame - Sort
      • 4-4. Frame - Encoding
      • 4-5. Frame - Data Cleaning
    • 5. Subset
    • 6. Groupby
    • 7. Bind
    • 8. Reshape
  • Visualization
    • 1. Chart Style
    • 2. Pandas Plot
    • 3. Matplotlib
    • 4. Seaborn
    • 5. Plotly
    • 6. WordCloud
  • Statistics
    • 1. Prob. Distribution
    • 2. Descriptive Statistics
    • 3. Normality Test
    • 4. Equal Var. Test
    • 5. Correlation Analysis
    • 6. Reliability Analysis
    • 7. Chi-square Test
    • 8. Student's T-test
    • 9. ANOVA
    • 10. Factor Analysis
    • 11. Regression
    • 12. Logistic Regression
  • Machine Learning
    • 1. Data Sets
    • 2. Data Split
    • 3. Data Prep
    • 4. AutoML
    • 5. Regressor
    • 6. Classifier
    • 7. Clustering
    • 8. Dimension
    • 9. GridSearch
    • 10. Fit/Predict
    • 11. Model Info
    • 12. Evaluation
    • 13. Pipeline
    • 14. Save / Load
Powered by GitBook
On this page
  • Which web browsers does Visual Python support?
  • I installed Visual Python, but the orange button does not appear on my Jupyter Notebook.
  • How can I install Visual Python behind a corporate firewall?
  1. GETTING STARTED

Installing FAQ

Frequently Asked Questions.

Which web browsers does Visual Python support?

Visual Python may work on many up-to-date browsers but it is optimized for Chrome.

I installed Visual Python, but the orange button does not appear on my Jupyter Notebook.

This can happen if the you're using a Python version is not 3.x.

  1. Please upgrade to Python 3.x, or

  2. If you are using multiple versions of Python, specify the pip version as 3 using the following command:

NOTE: Please uninstall before reinstalling.

pip uninstall visualpython
visualpy install —pip3

How can I install Visual Python behind a corporate firewall?

If pip installation gives you SSLError, it can be solved using the following command:

pip install visualpython --trusted-host pypi.org --trusted-host files.pythonhosted.org

To upgrade Visual Python in the same environment, follow the steps below.

1) Upgrade Visual Python package.

pip install visualpython --upgrade --trusted-host pypi.org --trusted-host files.pythonhosted.org 

2) Enable the package.

visualpy install
PreviousHow to installNext1. Import

Last updated 1 year ago