-
Notifications
You must be signed in to change notification settings - Fork 0
Installation (Kurulum)
Learn how to download, install, and run the projects in this repository.
Bu depodaki projeleri nasıl indireceğinizi, kuracağınızı ve çalıştıracağınızı öğrenin.
Before running any project, make sure you have the required software installed.
Git
Python (for Python projects)
GCC Compiler (for C projects)
G++ Compiler (for C++ projects)
A code editor (recommended: Visual Studio Code or PyCharm)
Herhangi bir projeyi çalıştırmadan önce aşağıdaki yazılımların kurulu olduğundan emin olun.
Git
Python (Python projeleri için)
GCC Derleyicisi (C projeleri için)
G++ Derleyicisi (C++ projeleri için)
Bir kod editörü (Visual Studio Code veya PyCharm önerilir.)
Clone the repository using Git:
git clone https://github.com/aliduna/Python_and_C_games.git
Move into the project folder:
cd Python_and_C_games
Git kullanarak depoyu bilgisayarınıza indirin:
git clone https://github.com/aliduna/Python_and_C_games.git
Ardından proje klasörüne girin:
cd Python_and_C_games
Run a Python file:
python filename.py
or
python3 filename.py
Some projects may require external libraries.
Install them with:
pip install package_name
Example:
pip install pygame
Python dosyasını çalıştırmak için:
python dosya.py
veya
python3 dosya.py
Bazı projeler ek kütüphaneler isteyebilir.
Kurmak için:
pip install paket_adi
Örnek:
pip install pygame
Compile:
gcc main.c -o main
Run:
./main
Windows:
main.exe
Derlemek için:
gcc main.c -o main
Çalıştırmak için:
./main
Windows:
main.exe
Compile:
g++ main.cpp -o main
Run:
./main
Windows:
main.exe
Derlemek için:
g++ main.cpp -o main
Çalıştırmak için:
./main
Windows:
main.exe
Editor | Recommended | Description -- | -- | -- Visual Studio Code | ✅ | Lightweight and powerful PyCharm | ✅ | Excellent for Python Code::Blocks | ✅ | Good for C/C++ Visual Studio | ✅ | Powerful C/C++ IDE
Common commands:
pip install pygame
pip install numpy
pip install pillow
Update pip:
python -m pip install --upgrade pip
Sık kullanılan komutlar:
pip install pygame
pip install numpy
pip install pillow
pip'i güncellemek için:
python -m pip install --upgrade pip
Install the missing library using pip.
Python is not added to your PATH.
Reinstall Python and enable Add Python to PATH.
Install MinGW or another GCC compiler and add it to PATH.
Eksik kütüphaneyi pip ile yükleyin.
Python PATH'e eklenmemiştir.
Python'u yeniden kurarken Add Python to PATH seçeneğini işaretleyin.
MinGW veya başka bir GCC derleyicisi kurun ve PATH'e ekleyin.
If you already cloned the repository:
git pull
Depoyu daha önce indirdiyseniz:
git pull
ile en güncel sürümü alabilirsiniz.
Keep Python updated.
Always read each project's README.
Install required libraries before running projects.
Report issues if something doesn't work.
Python'u güncel tutun.
Her projenin README dosyasını okuyun.
Gerekli kütüphaneleri önceden kurun.
Bir sorunla karşılaşırsanız Issue oluşturabilirsiniz.
Everything is installed!
Choose a project and start coding.
Happy Coding! 🚀
Artık her şey hazır!
İstediğiniz projeyi seçip kodlamaya başlayabilirsiniz.
İyi Kodlamalar! 🚀