Skip to content

Installation (Kurulum)

Coder Boy edited this page Aug 6, 2026 · 1 revision

🚀 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.


🇬🇧 Requirements

Before running any project, make sure you have the required software installed.

Software

  • Git

  • Python (for Python projects)

  • GCC Compiler (for C projects)

  • G++ Compiler (for C++ projects)

  • A code editor (recommended: Visual Studio Code or PyCharm)


🇹🇷 Gereksinimler

Herhangi bir projeyi çalıştırmadan önce aşağıdaki yazılımların kurulu olduğundan emin olun.

Gerekli Yazılımlar

  • 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 | Depoyu Klonlama

🇬🇧

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

🐍 Running Python Projects | Python Projelerini Çalıştırma

🇬🇧

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

💻 Running C Projects | C Projelerini Çalıştırma

🇬🇧

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

⚙️ Running C++ Projects | C++ Projelerini Çalıştırma

🇬🇧

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

🛠 Recommended Editors | Önerilen Editörler

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

📦 Installing Python Libraries | Python Kütüphanelerini Kurma

🇬🇧

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

❗ Common Errors | Yaygın Hatalar

🇬🇧

"ModuleNotFoundError"

Install the missing library using pip.


"Python is not recognized"

Python is not added to your PATH.

Reinstall Python and enable Add Python to PATH.


"gcc is not recognized"

Install MinGW or another GCC compiler and add it to PATH.


🇹🇷

"ModuleNotFoundError"

Eksik kütüphaneyi pip ile yükleyin.


"Python is not recognized"

Python PATH'e eklenmemiştir.

Python'u yeniden kurarken Add Python to PATH seçeneğini işaretleyin.


"gcc is not recognized"

MinGW veya başka bir GCC derleyicisi kurun ve PATH'e ekleyin.


🔄 Updating the Repository | Depoyu Güncelleme

🇬🇧

If you already cloned the repository:

git pull

🇹🇷

Depoyu daha önce indirdiyseniz:

git pull

ile en güncel sürümü alabilirsiniz.


💡 Tips | İpuçları

🇬🇧

  • 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.


🎉 You're Ready! | Hazırsınız!

🇬🇧

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! 🚀

Clone this wiki locally