Questions tagged [macos-ventura]

macOS Ventura (version 13) is the nineteenth major release of macOS.

macOS Ventura (version 13) is the nineteenth major release of macOS, Apple's desktop operating system for Macintosh computers. The successor to macOS Monterey, it was announced at WWDC 2022 on June 6, 2022. It is named after the city Ventura in California, following the home state naming system that started with OS X Mavericks.

323 questions
1
vote
1 answer

Yarn Project Not Working After Mac OS Ventura Installation

I have updated my mac's OS and when I try to run the same commands that I did prior to the update (see file, it was simply just yarn), I get a vomit of errors on my terminal and I get a system prompt that states: The "make" command requires the…
1
vote
1 answer

Error installing xlwings in Mac with Ventura 13.0

I'm trying to install xlwings in a Mac with Ventura 13.0. When I try to launch it (after importing it successfully, in a Jupiter notebook) I get this error msg: 'Make sure to have "appscript" and "psutil", dependencies of xlwings, installed.' If I…
1
vote
0 answers

How do I add .do (Stata) file extension to QuickLook in Mac OS 13?

i got the problem that since the current update of MacOS to 13, the Quicklook does not support .do file from Stata anymore. It worked so far super fine till now. I tried to add and altering QLStephen as well as QLColorCode. First is used: mdls -name…
KonstiR
  • 21
  • 2
1
vote
1 answer

SwiftUI TextField is always deleting itself

After updating to macOS Ventura 13.0, when i use the get: set: method inside a TextField, it now prevents me from typing in the TextField. This wasn't an issue before. struct ContentView: View { @State var testing1 = "" @State var…
swiftnoob
  • 303
  • 1
  • 5
  • 21
1
vote
0 answers

SwiftUI 4 ImageRenderer doesn't render user input

The new ImageRenderer() in SwiftUI 4 doesn't render user input: import SwiftUI struct ContentView: View { var body: some View { Image( uiImage: ImageRenderer(content: ViewToRender()).uiImage! ) …
MasterMind
  • 89
  • 7
0
votes
0 answers

How do I start a Cassandra cluster on macOS?

I am trying to start a Cassandra cluster on my local machine (macOS Ventura 13.5.1), the details of the cluster are as follows: Cassandra Version: 3.7 Number of Nodes: 5 I've manually created the network interface aliases: sudo ifconfig lo0 alias…
Leslie
  • 1
  • 4
0
votes
1 answer

How to Install Flutter in Macbook M1 chip without Rosetta or Homebrew or any intel related changes as well as not to use any third party tool?

I want to install Flutter without third party software like Rosetta, Homebrew. Reason behind that is I don't want to use that type of third party which affected to the core system of MACBOOK M1 chipset.
0
votes
1 answer

PostgreSQL, PgAdmin launching error on macOS Ventura 13.5.1

I have a MacBook Air 2020 (macOS Ventura 13.5.1). Installed PostgreSQL, worked 5-6 days without any incidents (stable). Today launched, the initial page loads and displays an error. Previously, when it was launched, it occupied 1 port (if I'm not…
0
votes
0 answers

How to repair on macOS 13.5 environment variables for a CONDA installlation with valid intelpython package

I have a good installation regarding Intel python3.9 with all modules loading perfectly. However, I have a bad behavior with the conda part of Intel OneAPI : I can't even do a $ conda list or a $ conda env list , I get the following message : $…
guizmo133
  • 11
  • 3
0
votes
0 answers

webdriver.Chrome() location, using Jupyter Notebook, mac OS Ventura 13.5.1

I´m using a Macbook Air M2 chip and I´m getting the following error: [Errno 86] Bad CPU type in executable. My code is the following: pip install selenium from selenium import webdriver driver = webdriver.Chrome() I downloaded the following…
0
votes
0 answers

mac terminal giving notifications every time I exit the tab for unknown reason

On Ventura 13.4 Basically, sometimes I forget to click off of the terminal and accidentally scroll with my mouse which goes through the command history. This causes the notification bell to go off quite a few times, and then when I leave the…
0
votes
0 answers

Bash loop for reading progress status ends on empty variable?

I'm trying to read the output of a RESTful API status on the progress of a download and print that out. As soon as the download is finished the status changes from "running" to "terminated regularly" and the "progress" indicator is not shown…
0
votes
1 answer

Cannot get Tomcat 10 to run on a Mac with Java 17

I just installed jdk-17.jdk on my Mac running Ventura 13.5, to support my install of apache-tomcat-10.1.12. I used the DMG installer for Java 17, and I received no errors. When I attempt to start up Tomcat using: startup.sh, I receive the following…
user1104028
  • 381
  • 7
  • 18
0
votes
0 answers

On MacOS M1, I receive "error: Only Win32 target is supported!" when using MingWin to cross-compile targeting x86_64 architecture

I am trying to compile and link a x86_64 dll in MacOS with a M1 processor using CMake and MingW32. I can compile the code perfectly with MingW32 when not using CMake. However, when using CMake I receive "error: Only Win32 target is supported!" I've…
Tareg
  • 21
  • 2
0
votes
0 answers

Python package for handling keydown events

I'm looking for a package which allows me to execute a callback any time a key is pressed on the keyboard. I tried the keyboard package and then I tried pynput the problem is the following: when trying to execute simple code like the following on…