# mac os

macOS is an operating system for Mac computers, with integrated system features and applications.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## 71. Мои рабочие инструменты

DevFeed: [71. Мои рабочие инструменты](<https://devfeed.tech/articles/71-30376.md>)

Original publisher: [Read original article](<https://www.mdubakov.com/posts/my-tools>)

Published: 2018-06-28T18:34:31Z

Content type: opinion

Language: ru

Sources: [Blog by Michael Dubakov](<https://devfeed.tech/sources/blog-by-michael-dubakov.md>)

Topics: [mac os](<https://devfeed.tech/topics/mac-os.md>)

Tags: [electron](<https://devfeed.tech/tags/electron.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [mac](<https://devfeed.tech/tags/mac.md>), [mac-os](<https://devfeed.tech/tags/mac-os.md>)

### AI overview

The author describes a small set of work tools, explaining how they use Notes, Mail, Keynote, Google Docs, a calendar, and drawing software. They also observe that browser-based work and Electron applications make changing from macOS easier.

### Source excerpt

На самом деле у меня удивительно мало инструментов. Их становилось все меньше и меньше, пока не осталось всего 8.

## How to install Qt 5.6 and PyQt5 in a Python 3.4 virtual environment on Mac OS X and Linux

DevFeed: [How to install Qt 5.6 and PyQt5 in a Python 3.4 virtual environment on Mac OS X and Linux](<https://devfeed.tech/articles/how-to-install-qt-5-6-and-pyqt5-in-a-python-3-4-virtual-environment-on-mac-os-x-and-linux-31836.md>)

Original publisher: [Read original article](<https://www.metachris.dev/2016/03/how-to-install-qt56-pyqt5-virtualenv-python3/>)

Author: Chris Hager

Published: 2016-03-24T00:00:00Z

Content type: tutorial

Language: en

Sources: [Chris Hager](<https://devfeed.tech/sources/chris-hager.md>)

Topics: [Qt](<https://devfeed.tech/topics/qt.md>), [Python](<https://devfeed.tech/topics/python.md>), [mac os](<https://devfeed.tech/topics/mac-os.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [Xcode](<https://devfeed.tech/topics/xcode.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Programming](<https://devfeed.tech/topics/programming.md>)

Tags: [application](<https://devfeed.tech/tags/application.md>), [command-line](<https://devfeed.tech/tags/command-line.md>), [gui](<https://devfeed.tech/tags/gui.md>), [guide](<https://devfeed.tech/tags/guide.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [install](<https://devfeed.tech/tags/install.md>), [installation](<https://devfeed.tech/tags/installation.md>), [linux](<https://devfeed.tech/tags/linux.md>), [mac](<https://devfeed.tech/tags/mac.md>), [python](<https://devfeed.tech/tags/python.md>), [terminal](<https://devfeed.tech/tags/terminal.md>), [xcode](<https://devfeed.tech/tags/xcode.md>)

### AI overview

A step-by-step guide to installing Qt 5.6 and PyQt5 with Python 3.4 inside a virtual environment on Mac OS X 10.11 and Linux. It covers Python, Xcode and command-line tools, Qt libraries, SIP, PyQt5, and a simple Qt application test.

### Source excerpt

This is a simple guide on installing the latest Qt (currently 5.6) and PyQt5 on Mac OS X 10.11 (El Capitan) and Linux with Python 3.4, inside a virtual environment. Installation Steps Python 3 Xcode and command-line tools Qt libraries Virtual environment SIP Python package PyQt5 Python package Python 3 First of all, make sure that Python 3 is available on your system. You can easily check this by opening the terminal and entering the command python3.

## Creating standalone Mac OS X applications with Python and py2app

DevFeed: [Creating standalone Mac OS X applications with Python and py2app](<https://devfeed.tech/articles/creating-standalone-mac-os-x-applications-with-python-and-py2app-31828.md>)

Original publisher: [Read original article](<https://www.metachris.dev/2015/11/create-standalone-mac-os-x-applications-with-python-and-py2app/>)

Author: Chris Hager

Published: 2015-11-28T00:00:00Z

Content type: tutorial

Language: en

Sources: [Chris Hager](<https://devfeed.tech/sources/chris-hager.md>)

Topics: [Python](<https://devfeed.tech/topics/python.md>), [mac os](<https://devfeed.tech/topics/mac-os.md>), [App](<https://devfeed.tech/topics/app.md>), [Deployment](<https://devfeed.tech/topics/deployment.md>), [ui](<https://devfeed.tech/topics/ui.md>), [Testing](<https://devfeed.tech/topics/testing.md>)

Tags: [app](<https://devfeed.tech/tags/app.md>), [applications](<https://devfeed.tech/tags/applications.md>), [bitbucket](<https://devfeed.tech/tags/bitbucket.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [github](<https://devfeed.tech/tags/github.md>), [issue-tracker](<https://devfeed.tech/tags/issue-tracker.md>), [mac](<https://devfeed.tech/tags/mac.md>), [mac-os](<https://devfeed.tech/tags/mac-os.md>), [python](<https://devfeed.tech/tags/python.md>), [stackoverflow](<https://devfeed.tech/tags/stackoverflow.md>), [testing](<https://devfeed.tech/tags/testing.md>), [tutorial](<https://devfeed.tech/tags/tutorial.md>)

### AI overview

A tutorial on using py2app to package Python 2 or 3 source code, including a Tkinter interface, as standalone Mac OS X applications. It covers setup, development and testing with alias mode, deployment builds, data files, and troubleshooting a known bug.

### Source excerpt

In this tutorial we'll be using py2app to create a standalone OSX application from a Python 2 or 3 source code with a simple Tkinter user interface. "py2app is a Python setuptools command which will allow you to make standalone application bundles and plugins from Python scripts. py2app is similar in purpose and design to py2exe for Windows." Relevant links about py2app: Documentation Source on BitBucket (last commit 2015-05-05) Issue Tracker, Mailing List This guide is loosely based on the official tutorial.