https://github.com/kartikcode/weather-app
Weather stimulation app based on Kivy GUI
https://github.com/kartikcode/weather-app
Last synced: 5 months ago
JSON representation
Weather stimulation app based on Kivy GUI
- Host: GitHub
- URL: https://github.com/kartikcode/weather-app
- Owner: kartikcode
- Created: 2019-12-26T14:33:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-30T04:48:35.000Z (almost 6 years ago)
- Last Synced: 2025-04-13T15:36:17.893Z (12 months ago)
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Weather-app
This is a mobile application built on the Kivy platform.
The app is capable of the following things:
• It renders weather for multiple locations:)
• Store the list of locations that have been searched before for easy handling.
• Also planning to add features so as to accomadate cuurent and future forecast.
# Installation
There is an unresolved issue in Ubuntu 18.0.4 which causes a lot of trouble.
Just for making your life eassy, run it in a python3 virtual environment.
Run in the folllowing code on your terminal for doing so:
1.Install Python 3 virtual environment creator
```
sudo apt install virtualenv python3-virtualenv
```
2.Create a Python virtual environment for python3. You can only install python3 packages inside this Python virtual
environment. If you also want to install Python 2.x packages, then you need to make another Python virtual environment.
```virtualenv -p python3 env```
3. This one to at last activate this virtual environment.
```source ./env/bin/activate```
The new Python virtual environment for python3 will be created in the env directory which is located in the current directory.