Running python on mac [closed] - python

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I have to learn python for a school project and I need a way I can code it and run it on my computer. Is there a way I can run python on safari via an MAMP web server. I have looked everywhere and can't grasp a grip on how I can run it as a page on my server. Thank you for your time. and thanks for the dislikes

You can use http://www.pythonanywhere.com if you don't want to install Python on your computer for any reason.

An amazing programing website is c9.io. It has access to nearly all the mainstream programming languages. Just check it out and you can make an account for free.
Go there here: c9.io

Related

Web scraping with VBA vs Python [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I am trying to automate web scraping by Excel. It's just accessing the website and download the data as an excel file.
I have three options; any recommendation or suggestions?
Use VBA and manipulate browser
Use VBA and http requests.
Call Python script from VBA
I prefer Python so much. However,I need to make it environment-independent and useable for anyone else who's not familiar with codes at all, so I would like to avoid extra installation and setup.
Any advise will help. Thanks!
I'd say go with whatever you feel the most comfortable with.
What I personally do when I need to distribute my Python applications is to create a standalone using Pyinstaller. You should be able to create standalones for several environments.

How do I convert a jupyter notebook project into a standalone web application? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I am new to machine learning & python. I found a predictive machine learning program on jupyter notebook. Is it possible to convert that jupyter project into a standalone web application? Do I need any libraries for it ? I want to demonstrate the chart & prediction formally. Suggestions?
You need to use django or pyramid or flask and use the same codes in a reorganized way.
Yeah it is possible. If you want to convert it to web application, you should use Flask, Django, etc. Flask is easy and light one, try it.

How to deploy a python chatbot [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I am a beginner of chatbot, I have developed python code to do pattern match from an intents.json file. code works fine and can answer questions.
But how to embed this python file and intents.json file into a site as a chatbot widget? Appreciate if any good tutorial for end-to-end chatbot project. Thank you.
Browsers do not run Python, so you would need to write an API. You can use Flask to do so fairly easily. Flask's tutorial is excellent.
An alternative would be to write a Javascript version that can run in the browser. This avoids the Flask server, but then people could easily jack your chatbot.

Ruby on Rails Developed Applications [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I'm looking to develop a desktop (not server) web application and I have been comparing Ruby on Rails vs Django. Question is, with Django the client needs to install Python 2.5, does the client need to install anything to execute a Ruby on Rails application?
Thanks....
You can't use Django and neither Ruby on Rails to develop a desktop app. There might be some projects than can turn these projects to a desktop app but neither of them are built for Desktop App development.
These are web frameworks.
You could simply find these facts by some simple searches on the web.

Can a python file run on a Raspberry Pi? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have developed a webserver in Python (using Bottle). In this moment it runs on my laptop, but in future it will run on a board (like Raspberry).
The webserver shows a html page that allow to the users to put some data and it should save locally in a file.
Is it possible? I have to use php?
Thanks
You can just run your python apps on a Raspberry Pi. There are many tutorials on the web.
Video:
https://www.youtube.com/watch?v=VFs1dhJPYa4
Tutorials:
https://makezine.com/projects/program-raspberry-pi-with-python/
http://www.makeuseof.com/tag/10-raspberry-pi-projects-beginners/
http://www.techradar.com/news/software/learn-to-program-your-raspberry-pi-1148194/2

Categories